home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 10828 / 10828.xpi / chrome / content / newTabKingOverlay.xul < prev    next >
Extensible Markup Language  |  2010-02-07  |  3KB  |  79 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE overlay SYSTEM "chrome://newtabking/locale/newtabking.dtd">
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4. <?xml-stylesheet href="chrome://newtabking/skin/ntkoverlay.css" type="text/css"?>
  5.  
  6. <overlay id="newTabKingOverlay"
  7.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  8.  
  9.     <script type="application/x-javascript" src="newTabKingOverlay-min.js"/>
  10.     <script type="application/x-javascript" src="thumbnails-min.js"/>
  11.     
  12.     <statusbar id="status-bar">
  13.         <statusbarpanel id="ntk-status-bar" insertafter="fbStatusBar" onmousedown="NewTabKing.taskbarLoad();">
  14.             <image id="ntk-statusicon" style="cursor:pointer;" src="chrome://newtabking/content/ntkExt16x16.png" tooltiptext="&newtabking.tooltip;"/>
  15.         </statusbarpanel>
  16.     </statusbar>
  17.  
  18.     <toolbarpalette id="BrowserToolbarPalette">
  19.         <toolbarbutton id="ntk-toolbarbutton"
  20.             type="button"
  21.             class="toolbarbutton-1 chromeclass-toolbar-additional"
  22.             label="&newtabking.label;"
  23.             tooltiptext="&newtabking.tooltip;"
  24.             oncommand="NewTabKing.taskbarLoad()">
  25.         </toolbarbutton>
  26.     </toolbarpalette>
  27.  
  28.     <window id="main-window">
  29.         <commandset id="newtabking-commandset">
  30.             <command id="newtabking-command"
  31.                 oncommand="NewTabKing.taskbarLoad();"/>
  32.         </commandset>
  33.         <keyset id="newtabking-keyset">
  34.             <key id="newtabking-key"
  35.                 modifiers="accel,alt"
  36.                 key="N"
  37.                 command="newtabking-command"/>
  38.         </keyset>
  39.         
  40. <!--
  41.         <vbox hidden="false" id="ntk_iframe_container" style="background-color:#ffffff;position:fixed;left:0px;top:0px;height:1px;min-height:1px">
  42.             <tabbox id="ntk_tabs_list" selectedIndex="0" style="background-color:transparent;padding:0px;border-style: none;">
  43.               <tabs hidden="true">
  44.                 <tab/>
  45.                 <tab/>
  46.               </tabs>
  47.               <tabpanels id="ntk_tabpanels_element" style="background-color:transparent;padding:0px;border-style: none;">
  48.                 <tabpanel style="background-color:transparent;padding:0px;border-style: none;">
  49.                     <browser id="ntk_iframe" src="chrome://newtabking/content/window.xul" style="width:1px;height:1px;min-height:1px"/>
  50.                 </tabpanel><tabpanel style="background-color:transparent;padding:0px;border-style: none;"></tabpanel>
  51.               </tabpanels>
  52.             </tabbox>
  53.         </vbox>
  54. -->
  55.         
  56.     </window>
  57.  
  58.  
  59.  
  60.  
  61.  
  62.     <menupopup id="menu_ToolsPopup">
  63.         <menuitem id="newtabking-open-newtabking"
  64.             class="menuitem-iconic"
  65.             label="&newtabking.label;"
  66.             command="newtabking-command"
  67.             accesskey="N"
  68.             position="22"
  69.             key="newtabking-key"/>
  70.     </menupopup>
  71.  
  72. </overlay>
  73.  
  74. <!--
  75. <commandset id="mainCommandSet">
  76.     <command id="cmd_newNavigatorTab"
  77.         oncommand="NewTabKing.BrowserOpenTab(null);"/>
  78. </commandset>
  79. -->